How to Install PHP on Android Device?
Php is an open-source programming language that is typically used for Web development but may also be used for other purposes (backend developing). To put it succinctly,...
read more
How to get the outer html of an element using jQuery ?
Sometimes, there is a need to get the entire HTML element by its id and not merely its contents, for doing so, we shall use the HTML DOM outerHTML Property to get the outer HTML of HTML element....
read more
How to install an npm package directly from GitHub ?
NPM (Node Package Manager) is the default package manager for Node.js and is written entirely in Javascript. Developed by Isaac Z. Schlueter, it was initially released on January 12, 2010. NPM manages all the packages and modules for Node.js and consists of command-line client npm. It gets installed into the system with the installation of Node.js. The required packages and modules in the Node project are installed using NPM. A package contains all the files needed for a module and modules are the JavaScript libraries that can be included in the Node project according to the requirement of the project....
read more
How to Build a Simple Web Server with Golang?
Golang is a procedural programming language ideal to build simple, reliable, and efficient software....
read more
How to achieve <fieldset> like effect without using <fieldset> tag ?
Forms are used to make a group for more understandable of all users and clients, as related data fields are easier to identify. It also makes it easier for users to concentrate on smaller and more clearly defined groups by understanding them one by one as an individual rather than try to grasp the entire form at once....
read more
How to combine parent using ampersand (&) with type selectors in SASS ?
Ampersand or “&” is a powerful feature of SASS. It enhances the readability of code by using nesting statements, which takes an edge over conventional CSS. We can nest the css class any number of times but most of the times it’s not required....
read more
How to make a website using WordPress (Part – 1)
Hi guys, most of us at some instances of time face a problem with how to start something for a minor or major project. Many of us wish to make a website-based project but do not know how to proceed. To assist all my friends, today I’ll walk you through the process of installing and getting acquainted with the WordPress environment. Below I give step by step process along with screenshots to make a website using WordPress. Just follow them and you are done!!...
read more
How to Install imap extension in PHP on Windows?
IMAP stands for Internet Message Access Protocol. It is an application layer protocol. PHP-IMAP is used to efficiently access messages from the IMAP server. IMAP stores email on the server and can download on-demand. To access the IMAP server we have to use PHP IMAP extension, now using this extension we can execute several operations to get different parts of the message. Or we can say that it acts as an intermediary between client and email servers. It was designed by Mark Crispin in 1986 as a remote access mailbox protocol. Some important features of IMAP are:...
read more
How to Install and use PHP Composer on Linux?
A composer is a tool that is used for dependency management in PHP. But Composer is not a package manager. Composer is an application-level manager that is completely used for PHP programming language. A package manager is used to import codebases into the project and make it up to date. Composer helps to declare necessary libraries and dependencies requires for a particular project. However, it helps to install some packages which are not easily available on Packagist.org. and it also allows adding require project libraries to a certain project. It is used to download required packages for some projects....
read more
How to Install MongoDB Driver in PHP?
MongoDB is a database & it verifies the document databases. It is widely used for its flexibility & scalability. MongoDB provides a cloud & server-based database management system. Also, it provides some extra plugins to use MongoDB in different aspects also. It provides a PHP driver plugin that enables MongoDB to work with PHP server providers. For downloading PHP drivers of MongoDB, the main requirement is that any type of server like Wamp or Xampp should be installed on the machine previously. Otherwise, it will not work further. The Xampp Apache should be configured & run before in hand....
read more
Laravel | Installation and Configuration
Laravel is a PHP framework that makes building complex web applications a cakewalk. In this guide you are going to learn how to Install and Configure Laravel and get your first Laravel project running in your computer....
read more
How to install Node.js on a webserver ?
To access web pages on any web application, we need a webserver to handle all the HTTP requests for the web application.Node.js provides the capabilities to create our own webserver which will handle HTTP requests asynchronously....
read more